ProceedCard

fun ProceedCard(text: String, navigate: () -> Unit)

Composable function that displays a clickable card to navigate to another screen.

This function creates a card with a text label and an icon button. When clicked, it triggers the provided navigate lambda to navigate to a different screen.

Parameters

text

The text to be displayed inside the card.

navigate

A lambda function to handle the navigation when the card is clicked.